GetMatchedStylesForNodeResponse

data class GetMatchedStylesForNodeResponse(inlineStyle: CSSStyle?, attributesStyle: CSSStyle?, matchedCSSRules: List<RuleMatch>?, pseudoElements: List<PseudoElementMatches>?, inherited: List<InheritedStyleEntry>?, cssKeyframesRules: List<CSSKeyframesRule>?)

Represents response frame that is returned from CSS#getMatchedStylesForNode operation call. Returns requested styles for a DOM node identified by nodeId.

See also

Constructors

GetMatchedStylesForNodeResponse
Link copied to clipboard
fun GetMatchedStylesForNodeResponse(inlineStyle: CSSStyle? = null, attributesStyle: CSSStyle? = null, matchedCSSRules: List<RuleMatch>? = null, pseudoElements: List<PseudoElementMatches>? = null, inherited: List<InheritedStyleEntry>? = null, cssKeyframesRules: List<CSSKeyframesRule>? = null)

Properties

attributesStyle
Link copied to clipboard
val attributesStyle: CSSStyle? = null
Attribute-defined element style (e.g.
cssKeyframesRules
Link copied to clipboard
val cssKeyframesRules: List<CSSKeyframesRule>? = null
A list of CSS keyframed animations matching this node.
inherited
Link copied to clipboard
val inherited: List<InheritedStyleEntry>? = null
A chain of inherited styles (from the immediate node parent up to the DOM tree root).
inlineStyle
Link copied to clipboard
val inlineStyle: CSSStyle? = null
Inline style for the specified DOM node.
matchedCSSRules
Link copied to clipboard
val matchedCSSRules: List<RuleMatch>? = null
CSS rules matching this node, from all applicable stylesheets.
pseudoElements
Link copied to clipboard
val pseudoElements: List<PseudoElementMatches>? = null
Pseudo style matches for this node.

Sources

jvm source
Link copied to clipboard